home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / gfx / pbm / dicelibs.lha / pbmplus.h
C/C++ Source or Header  |  1993-12-09  |  9KB  |  276 lines

  1. /* pbmplus.h - header file for PBM, PGM, PPM, and PNM
  2. **
  3. ** Copyright (C) 1988, 1989, 1991 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #ifndef _PBMPLUS_H_
  14. #define _PBMPLUS_H_
  15.  
  16. #include <sys/types.h>
  17. #include <ctype.h>
  18. #include <stdio.h>
  19. #ifdef VMS
  20. #include <perror.h>
  21. #include <errno.h>
  22. #endif
  23.  
  24. #if defined(USG) || defined(SVR4) || defined(VMS)
  25. #define SYSV
  26. #endif
  27. #if ! ( defined(BSD) || defined(SYSV) || defined(MSDOS) || defined(AMIGA) )
  28. /* CONFIGURE: If your system is >= 4.2BSD, set the BSD option; if you're a
  29. ** System V site, set the SYSV option; if you're IBM-compatible, set MSDOS;
  30. ** and if you run on an Amiga, set AMIGA. If your compiler is ANSI C, you're
  31. ** probably better off setting SYSV - all it affects is string handling.
  32. */
  33. /* #define BSD */
  34. /* #define SYSV */
  35. /* #define MSDOS */
  36. #define AMIGA
  37. #endif
  38.  
  39. /* CONFIGURE: If you have an X11-style rgb color names file, define its
  40. ** path here.  This is used by PPM to parse color names into rgb values.
  41. ** If you don't have such a file, comment this out and use the alternative
  42. ** hex and decimal forms to specify colors (see ppm/pgmtoppm.1 for details).
  43. */
  44. /* #define RGB_DB "/usr/lib/X11/rgb" */
  45. /*#define RGB_DB "/usr/openwin/lib/rgb.txt"*/
  46. #ifdef VMS
  47. #define RGB_DB "PBMplus_Dir:RGB.TXT"
  48. #endif
  49.  
  50. /* CONFIGURE: If you want to enable writing "raw" files, set this option.
  51. ** "Raw" files are smaller, and much faster to read and write, but you
  52. ** must have a filesystem that allows all 256 ASCII characters to be read
  53. ** and written.  You will no longer be able to mail P?M files without
  54. ** using uuencode or the equivalent, or running the files through pnmnoraw.
  55. ** Note that reading "raw" files works whether writing is enabled or not.
  56. */
  57. #define PBMPLUS_RAWBITS
  58.  
  59. /* CONFIGURE: PGM can store gray values as either bytes or shorts.  For most
  60. ** applications, bytes will be big enough, and the memory savings can be
  61. ** substantial.  However, if you need more than 8 bits of grayscale resolution,
  62. ** then define this symbol. Unless your computer is very slow or you are short
  63. ** of memory, there is no reason why you should not set this symbol.
  64. */
  65. /* #define PGM_BIGGRAYS */
  66.  
  67. /* CONFIGURE: Normally, PPM handles a pixel as a struct of three grays.
  68. ** If grays are stored in bytes, that's 24 bits per color pixel; if
  69. ** grays are stored as shorts, that's 48 bits per color pixel.  PPM
  70. ** can also be configured to pack the three grays into a single longword,
  71. ** 10 bits each, 30 bits per pixel.
  72. **
  73. ** If you have configured PGM with the PGM_BIGGRAYS option, AND you don't
  74. ** need more than 10 bits for each color component, AND you care more about
  75. ** memory use than speed, then this option might be a win.  Under these
  76. ** circumstances it will make some of the programs use 1.5 times less space,
  77. ** but all of the programs will run about 1.4 times slower.
  78. **
  79. ** If you are not using PGM_BIGGRAYS, then this option is useless -- it
  80. ** doesn't save any space, but it still slows things down.
  81. */
  82. /* #define PPM_PACKCOLORS */
  83.  
  84. /* CONFIGURE: uncomment this to enable debugging checks. */
  85. /* #define DEBUG */
  86.  
  87.  
  88. #if ( defined(SYSV) || defined(AMIGA) )
  89.  
  90. #include <string.h>
  91. #define index(s,c) strchr(s,c)
  92. #define rindex(s,c) strrchr(s,c)
  93. #define srandom(s) srand(s)
  94. #define random rand
  95. #ifndef _DCC    /* Amiga DICE Compiler */
  96. #define bzero(dst,len) memset(dst,0,len)
  97. #define bcopy(src,dst,len) memcpy(dst,src,len)
  98. #define bcmp memcmp
  99. extern void srand();
  100. extern int rand();
  101. #endif /* _DCC */
  102.  
  103. #else /* SYSV or AMIGA */
  104.  
  105. #include <strings.h>
  106. extern void srandom();
  107. extern long random();
  108.  
  109. #endif /*SYSV or AMIGA*/
  110.  
  111. #ifdef AMIGA
  112. #include <fcntl.h>
  113. #include <time.h>
  114. #include <stdlib.h>
  115. #else
  116. extern int atoi();
  117. extern void exit();
  118. extern long time();
  119. extern int write();
  120. #endif
  121.  
  122. /* CONFIGURE: On most BSD systems, malloc() gets declared in stdlib.h, on
  123. ** system V, it gets declared in malloc.h. On some systems, malloc.h
  124. ** doesn't declare these, so we have to do it here. On other systems,
  125. ** for example HP/UX, it declares them incompatibly.  And some systems,
  126. ** for example Dynix, don't have a malloc.h at all.  A sad situation.
  127. ** If you have compilation problems that point here, feel free to tweak
  128. ** or remove these declarations.
  129. */
  130. #ifdef BSD
  131. #include <stdlib.h>
  132. #endif
  133. #if (defined(SYSV) && !defined(VMS))
  134. #include <malloc.h>
  135. #endif
  136. /* extern char* malloc(); */
  137. /* extern char* realloc(); */
  138. /* extern char* calloc(); */
  139.  
  140. /* CONFIGURE: Some systems don't have vfprintf(), which we need for the
  141. ** error-reporting routines.  If you compile and get a link error about
  142. ** this routine, uncomment the first define, which gives you a vfprintf
  143. ** that uses the theoretically non-portable but fairly common routine
  144. ** _doprnt().  If you then get a link error about _doprnt, or
  145. ** message-printing doesn't look like it's working, try the second
  146. ** define instead.
  147. */
  148. /* #define NEED_VFPRINTF1 */
  149. /* #define NEED_VFPRINTF2 */
  150.  
  151. /* CONFIGURE: Some systems don't have strstr(), which some routines need.
  152. ** If you compile and get a link error about this routine, uncomment the
  153. ** define, which gives you a strstr.
  154. */
  155. /* #define NEED_STRSTR */
  156.  
  157. /* CONFIGURE: If you don't want a fixed path to an X11 color name file
  158. ** compiled into PBMPlus, set this option.  Now RGB_DB (see Makefile)
  159. ** defines the name of an environment-variable that holds the complete
  160. ** path and name of this file.
  161. */
  162. #define A_RGBENV
  163. #define RGB_DB  "RGBDEF"
  164.  
  165. /* CONFIGURE: Set this option if your compiler uses strerror(errno)
  166. ** instead of sys_errlist[errno] for error messages.
  167. */
  168. #define A_STRERROR
  169.  
  170. /* CONFIGURE: On small systems without VM it is possible that there is
  171. ** enough memory for a large array, but it is fragmented.  So the usual
  172. ** malloc( all-in-one-big-chunk ) fails.  With this option, if the first
  173. ** method fails, pm_allocarray() tries to allocate the array row by row.
  174. */
  175. #define A_FRAGARRAY
  176.  
  177. /*
  178. ** Some special things for the Amiga.
  179. */
  180.  
  181. /* End of configurable definitions. */
  182.  
  183.  
  184. #ifdef AMIGA
  185. #include <clib/exec_protos.h>
  186. #define getpid(x)   ((long)FindTask(NULL))
  187. #ifdef _DCC /* Amiga DICE Compiler, dynamic stack variables */
  188. long _stack_fudge = 16384;
  189. long _stack_chunk = 32768;
  190. #endif /* _DCC */
  191. #endif /* AMIGA */
  192.  
  193.  
  194. #undef max
  195. #define max(a,b) ((a) > (b) ? (a) : (b))
  196. #undef min
  197. #define min(a,b) ((a) < (b) ? (a) : (b))
  198. #undef abs
  199. #define abs(a) ((a) >= 0 ? (a) : -(a))
  200. #undef odd
  201. #define odd(n) ((n) & 1)
  202.  
  203.  
  204. /* Definitions to make PBMPLUS work with either ANSI C or C Classic. */
  205.  
  206. #if __STDC__
  207. #define ARGS(alist) alist
  208. #else /*__STDC__*/
  209. #define ARGS(alist) ()
  210. #define const
  211. #endif /*__STDC__*/
  212.  
  213.  
  214. /* Initialization. */
  215.  
  216. void pm_init ARGS(( int* argcP, char* argv[] ));
  217.  
  218. /* Variable-sized arrays definitions. */
  219.  
  220. char** pm_allocarray ARGS(( int cols, int rows, int size ));
  221. char* pm_allocrow ARGS(( int cols, int size ));
  222. void pm_freearray ARGS(( char** its, int rows ));
  223. void pm_freerow ARGS(( char* itrow ));
  224.  
  225.  
  226. /* Case-insensitive keyword matcher. */
  227.  
  228. int pm_keymatch ARGS(( char* str, char* keyword, int minchars ));
  229.  
  230.  
  231. /* Log base two hacks. */
  232.  
  233. int pm_maxvaltobits ARGS(( int maxval ));
  234. int pm_bitstomaxval ARGS(( int bits ));
  235.  
  236.  
  237. /* Error handling definitions. */
  238.  
  239. void pm_message ARGS(( char*, ... ));
  240. void pm_error ARGS(( char*, ... ));                     /* doesn't return */
  241. void pm_perror ARGS(( char* reason ));                  /* doesn't return */
  242. void pm_usage ARGS(( char* usage ));                    /* doesn't return */
  243.  
  244.  
  245. /* File open/close that handles "-" as stdin and checks errors. */
  246.  
  247. FILE* pm_openr ARGS(( char* name ));
  248. FILE* pm_openw ARGS(( char* name ));
  249. void pm_close ARGS(( FILE* f ));
  250.  
  251.  
  252. /* Endian I/O. */
  253.  
  254. int pm_readbigshort ARGS(( FILE* in, short* sP ));
  255. int pm_writebigshort ARGS(( FILE* out, short s ));
  256. int pm_readbiglong ARGS(( FILE* in, long* lP ));
  257. int pm_writebiglong ARGS(( FILE* out, long l ));
  258. int pm_readlittleshort ARGS(( FILE* in, short* sP ));
  259. int pm_writelittleshort ARGS(( FILE* out, short s ));
  260. int pm_readlittlelong ARGS(( FILE* in, long* lP ));
  261. int pm_writelittlelong ARGS(( FILE* out, long l ));
  262.  
  263.  
  264. /* Compatibility stuff */
  265.  
  266. #ifdef NEED_STRSTR
  267. char *strstr ARGS((char *s1, char *s2));
  268. #endif
  269.  
  270. #if defined(NEED_VFPRINTF1) || defined(NEED_VFPRINTF2)
  271. int vfprintf ARGS(( FILE* stream, char* format, va_list args ));
  272. #endif /*NEED_VFPRINTF*/
  273.  
  274.  
  275. #endif /*_PBMPLUS_H_*/
  276.